Q3BoundingBox_Copy
You can use theQ3BoundingBox_Copy
function to make a copy of a bounding box.
TQ3BoundingBox *Q3BoundingBox_Copy ( const TQ3BoundingBox *src, TQ3BoundingBox *dest);
src
- A pointer to the bounding box to be copied.
dest
- On entry, a pointer to a buffer large enough to hold a bounding box. On exit, a pointer to a copy of the bounding box specified by the
src
parameter.DESCRIPTION
TheQ3BoundingBox_Copy
function returns, as its function result and in thedest
parameter, a copy of the bounding box specified by thesrc
parameter.Q3BoundingBox_Copy
does not allocate any memory for the destination bounding box; thedest
parameter must point to space allocated in the heap or on the stack before you callQ3BoundingBox_Copy
.